home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tutorii.zip / CREM.DAT < prev    next >
Text File  |  1991-11-29  |  484b  |  17 lines

  1. Explanation of the REM command. It is a 
  2. BATCH command and CONFIG.SYS COMMAND.
  3.  
  4. This command is designed to let you put 
  5. remarks into any batch file. This will not 
  6. be executed and they are only there for 
  7. your or the user's convenience. They can 
  8. be used to put explanations into the 
  9. Batch file.
  10.  
  11. Example: 
  12.      This short program will only clear 
  13.      the screen. But it uses the REM command:
  14.        echo off
  15.        REM this will only clear the screen.
  16.        cls
  17.